home *** CD-ROM | disk | FTP | other *** search
/ Scene 96 / Scene 96 International Edition (Zyklop Software) (Disc 2) (1997).iso / misc / coding / cp2dekit / h / pmain.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-12-29  |  647 b   |  26 lines

  1. //***************************************************************************
  2. //
  3. // this file is (c) '94-'96 Niklas Beisert
  4. //
  5. // this file is part of the cubic player development kit.
  6. // you may only use/modify/spread this file under the terms stated
  7. // in the cubic player development kit accompanying documentation.
  8. //
  9. //***************************************************************************
  10.  
  11. struct moduleinfostruct;
  12.  
  13. struct initcloseregstruct
  14. {
  15.   int (*Init)();
  16.   void (*Close)();
  17.   initcloseregstruct *next;
  18. };
  19.  
  20. void plDosShell();
  21. int plSystem(const char *);
  22.  
  23. void conInit();
  24. void conSave();
  25. void conRestore();
  26.